home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / macpath.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  9KB  |  337 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Pathname and path-related operations for the Macintosh.'''
  5. import os
  6. from stat import *
  7. __all__ = [
  8.     'normcase',
  9.     'isabs',
  10.     'join',
  11.     'splitdrive',
  12.     'split',
  13.     'splitext',
  14.     'basename',
  15.     'dirname',
  16.     'commonprefix',
  17.     'getsize',
  18.     'getmtime',
  19.     'getatime',
  20.     'getctime',
  21.     'islink',
  22.     'exists',
  23.     'lexists',
  24.     'isdir',
  25.     'isfile',
  26.     'walk',
  27.     'expanduser',
  28.     'expandvars',
  29.     'normpath',
  30.     'abspath',
  31.     'curdir',
  32.     'pardir',
  33.     'sep',
  34.     'pathsep',
  35.     'defpath',
  36.     'altsep',
  37.     'extsep',
  38.     'devnull',
  39.     'realpath',
  40.     'supports_unicode_filenames']
  41. curdir = ':'
  42. pardir = '::'
  43. extsep = '.'
  44. sep = ':'
  45. pathsep = '\n'
  46. defpath = ':'
  47. altsep = None
  48. devnull = 'Dev:Null'
  49.  
  50. def normcase(path):
  51.     return path.lower()
  52.  
  53.  
  54. def isabs(s):
  55.     '''Return true if a path is absolute.
  56.     On the Mac, relative paths begin with a colon,
  57.     but as a special case, paths with no colons at all are also relative.
  58.     Anything else is absolute (the string up to the first colon is the
  59.     volume name).'''
  60.     if ':' in s:
  61.         pass
  62.     return s[0] != ':'
  63.  
  64.  
  65. def join(s, *p):
  66.     path = s
  67.     for t in p:
  68.         if not s or isabs(t):
  69.             path = t
  70.             continue
  71.         
  72.         if t[:1] == ':':
  73.             t = t[1:]
  74.         
  75.         if ':' not in path:
  76.             path = ':' + path
  77.         
  78.         if path[-1:] != ':':
  79.             path = path + ':'
  80.         
  81.         path = path + t
  82.     
  83.     return path
  84.  
  85.  
  86. def split(s):
  87.     '''Split a pathname into two parts: the directory leading up to the final
  88.     bit, and the basename (the filename, without colons, in that directory).
  89.     The result (s, t) is such that join(s, t) yields the original argument.'''
  90.     if ':' not in s:
  91.         return ('', s)
  92.     
  93.     colon = 0
  94.     for i in range(len(s)):
  95.         if s[i] == ':':
  96.             colon = i + 1
  97.             continue
  98.     
  99.     path = s[:colon - 1]
  100.     file = s[colon:]
  101.     if path and ':' not in path:
  102.         path = path + ':'
  103.     
  104.     return (path, file)
  105.  
  106.  
  107. def splitext(p):
  108.     '''Split a path into root and extension.
  109.     The extension is everything starting at the last dot in the last
  110.     pathname component; the root is everything before that.
  111.     It is always true that root + ext == p.'''
  112.     i = p.rfind('.')
  113.     if i <= p.rfind(':'):
  114.         return (p, '')
  115.     else:
  116.         return (p[:i], p[i:])
  117.  
  118.  
  119. def splitdrive(p):
  120.     """Split a pathname into a drive specification and the rest of the
  121.     path.  Useful on DOS/Windows/NT; on the Mac, the drive is always
  122.     empty (don't use the volume name -- it doesn't have the same
  123.     syntactic and semantic oddities as DOS drive letters, such as there
  124.     being a separate current directory per drive)."""
  125.     return ('', p)
  126.  
  127.  
  128. def dirname(s):
  129.     return split(s)[0]
  130.  
  131.  
  132. def basename(s):
  133.     return split(s)[1]
  134.  
  135.  
  136. def ismount(s):
  137.     if not isabs(s):
  138.         return False
  139.     
  140.     components = split(s)
  141.     if len(components) == 2:
  142.         pass
  143.     return components[1] == ''
  144.  
  145.  
  146. def isdir(s):
  147.     '''Return true if the pathname refers to an existing directory.'''
  148.     
  149.     try:
  150.         st = os.stat(s)
  151.     except os.error:
  152.         return 0
  153.  
  154.     return S_ISDIR(st.st_mode)
  155.  
  156.  
  157. def getsize(filename):
  158.     '''Return the size of a file, reported by os.stat().'''
  159.     return os.stat(filename).st_size
  160.  
  161.  
  162. def getmtime(filename):
  163.     '''Return the last modification time of a file, reported by os.stat().'''
  164.     return os.stat(filename).st_mtime
  165.  
  166.  
  167. def getatime(filename):
  168.     '''Return the last access time of a file, reported by os.stat().'''
  169.     return os.stat(filename).st_atime
  170.  
  171.  
  172. def islink(s):
  173.     '''Return true if the pathname refers to a symbolic link.'''
  174.     
  175.     try:
  176.         import Carbon.File as Carbon
  177.         return Carbon.File.ResolveAliasFile(s, 0)[2]
  178.     except:
  179.         return False
  180.  
  181.  
  182.  
  183. def isfile(s):
  184.     '''Return true if the pathname refers to an existing regular file.'''
  185.     
  186.     try:
  187.         st = os.stat(s)
  188.     except os.error:
  189.         return False
  190.  
  191.     return S_ISREG(st.st_mode)
  192.  
  193.  
  194. def getctime(filename):
  195.     '''Return the creation time of a file, reported by os.stat().'''
  196.     return os.stat(filename).st_ctime
  197.  
  198.  
  199. def exists(s):
  200.     '''Test whether a path exists.  Returns False for broken symbolic links'''
  201.     
  202.     try:
  203.         st = os.stat(s)
  204.     except os.error:
  205.         return False
  206.  
  207.     return True
  208.  
  209.  
  210. def lexists(path):
  211.     '''Test whether a path exists.  Returns True for broken symbolic links'''
  212.     
  213.     try:
  214.         st = os.lstat(path)
  215.     except os.error:
  216.         return False
  217.  
  218.     return True
  219.  
  220.  
  221. def commonprefix(m):
  222.     '''Given a list of pathnames, returns the longest common leading component'''
  223.     if not m:
  224.         return ''
  225.     
  226.     prefix = m[0]
  227.     for item in m:
  228.         for i in range(len(prefix)):
  229.             if prefix[:i + 1] != item[:i + 1]:
  230.                 prefix = prefix[:i]
  231.                 if i == 0:
  232.                     return ''
  233.                 
  234.                 break
  235.                 continue
  236.         
  237.     
  238.     return prefix
  239.  
  240.  
  241. def expandvars(path):
  242.     '''Dummy to retain interface-compatibility with other operating systems.'''
  243.     return path
  244.  
  245.  
  246. def expanduser(path):
  247.     '''Dummy to retain interface-compatibility with other operating systems.'''
  248.     return path
  249.  
  250.  
  251. class norm_error(Exception):
  252.     '''Path cannot be normalized'''
  253.     pass
  254.  
  255.  
  256. def normpath(s):
  257.     '''Normalize a pathname.  Will return the same result for
  258.     equivalent paths.'''
  259.     if ':' not in s:
  260.         return ':' + s
  261.     
  262.     comps = s.split(':')
  263.     i = 1
  264.     while i < len(comps) - 1:
  265.         if comps[i] == '' and comps[i - 1] != '':
  266.             if i > 1:
  267.                 del comps[i - 1:i + 1]
  268.                 i = i - 1
  269.             else:
  270.                 raise norm_error, 'Cannot use :: immediately after volume name'
  271.         i > 1
  272.         i = i + 1
  273.     s = ':'.join(comps)
  274.     if s[-1] == ':' and len(comps) > 2 and s != ':' * len(s):
  275.         s = s[:-1]
  276.     
  277.     return s
  278.  
  279.  
  280. def walk(top, func, arg):
  281.     """Directory tree walk with callback function.
  282.  
  283.     For each directory in the directory tree rooted at top (including top
  284.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  285.     dirname is the name of the directory, and fnames a list of the names of
  286.     the files and subdirectories in dirname (excluding '.' and '..').  func
  287.     may modify the fnames list in-place (e.g. via del or slice assignment),
  288.     and walk will only recurse into the subdirectories whose names remain in
  289.     fnames; this can be used to implement a filter, or to impose a specific
  290.     order of visiting.  No semantics are defined for, or required of, arg,
  291.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  292.     a filename pattern, or a mutable object designed to accumulate
  293.     statistics.  Passing None for arg is common."""
  294.     
  295.     try:
  296.         names = os.listdir(top)
  297.     except os.error:
  298.         return None
  299.  
  300.     func(arg, top, names)
  301.     for name in names:
  302.         name = join(top, name)
  303.         if isdir(name) and not islink(name):
  304.             walk(name, func, arg)
  305.             continue
  306.     
  307.  
  308.  
  309. def abspath(path):
  310.     '''Return an absolute path.'''
  311.     if not isabs(path):
  312.         path = join(os.getcwd(), path)
  313.     
  314.     return normpath(path)
  315.  
  316.  
  317. def realpath(path):
  318.     path = abspath(path)
  319.     
  320.     try:
  321.         import Carbon.File as Carbon
  322.     except ImportError:
  323.         return path
  324.  
  325.     if not path:
  326.         return path
  327.     
  328.     components = path.split(':')
  329.     path = components[0] + ':'
  330.     for c in components[1:]:
  331.         path = join(path, c)
  332.         path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname()
  333.     
  334.     return path
  335.  
  336. supports_unicode_filenames = False
  337.